testing.common.chatty (field)

62 uses

	testing (current package)
		benchmark.go#L249: 		fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), b.name, b.output)
		benchmark.go#L262: 		if b.chatty != nil && (len(b.output) > 0 || finished) {
		benchmark.go#L264: 			fmt.Fprintf(b.w, "%s--- %s: %s\n%s", b.chatty.prefix(), tag, b.name, b.output)
		benchmark.go#L715: 		main.chatty = newChattyPrinter(main.w)
		benchmark.go#L729: 			if b.chatty == nil {
		benchmark.go#L739: 						chatty: b.chatty,
		benchmark.go#L752: 				fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), benchName, b.output)
		benchmark.go#L756: 			if b.chatty != nil {
		benchmark.go#L767: 				fmt.Fprintf(b.w, "%s--- BENCH: %s\n%s", b.chatty.prefix(), benchName, b.output)
		benchmark.go#L772: 			if b.chatty != nil && b.chatty.json {
		benchmark.go#L773: 				b.chatty.Updatef("", "=== NAME  %s\n", "")
		benchmark.go#L813: 			chatty:  b.chatty,
		benchmark.go#L827: 	if b.chatty != nil {
		benchmark.go#L840: 			if b.chatty.json {
		benchmark.go#L841: 				b.chatty.Updatef(benchName, "=== RUN   %s\n", benchName)
		fuzz.go#L312: 				chatty:    f.chatty,
		fuzz.go#L323: 		if t.chatty != nil {
		fuzz.go#L324: 			t.chatty.Updatef(t.name, "=== RUN   %s\n", t.name)
		fuzz.go#L343: 		if t.chatty != nil && t.chatty.json {
		fuzz.go#L344: 			t.chatty.Updatef(t.parent.name, "=== NAME  %s\n", t.parent.name)
		fuzz.go#L421: 	} else if f.chatty != nil {
		fuzz.go#L499: 				root.chatty = newChattyPrinter(root.w)
		fuzz.go#L524: 						chatty:    root.chatty,
		fuzz.go#L532: 				if f.chatty != nil {
		fuzz.go#L533: 					f.chatty.Updatef(f.name, "=== RUN   %s\n", f.name)
		fuzz.go#L537: 				if f.chatty != nil && f.chatty.json {
		fuzz.go#L538: 					f.chatty.Updatef(f.parent.name, "=== NAME  %s\n", f.parent.name)
		fuzz.go#L578: 		root.chatty = newChattyPrinter(root.w)
		fuzz.go#L609: 			chatty:    root.chatty,
		fuzz.go#L617: 	if f.chatty != nil {
		fuzz.go#L618: 		f.chatty.Updatef(f.name, "=== RUN   %s\n", f.name)
		fuzz.go#L622: 	if f.chatty != nil {
		fuzz.go#L623: 		f.chatty.Updatef(f.parent.name, "=== NAME  %s\n", f.parent.name)
		testing.go#L641: 	chatty         *chattyPrinter // A copy of chattyPrinter, if the chatty flag is set.
		testing.go#L857: 	if c.chatty != nil && (p.w == c.chatty.w || c.chatty.json) {
		testing.go#L871: 		c.chatty.Updatef(testName, format, args...)
		testing.go#L875: 		fmt.Fprintf(p.w, c.chatty.prefix()+format, args...)
		testing.go#L1066: 		if c.chatty != nil {
		testing.go#L1072: 				c.chatty.Printf(c.name, "%s", c.decorate(s, depth+1))
		testing.go#L1571: 	if t.chatty != nil {
		testing.go#L1572: 		t.chatty.Updatef(t.name, "=== PAUSE %s\n", t.name)
		testing.go#L1580: 	if t.chatty != nil {
		testing.go#L1581: 		t.chatty.Updatef(t.name, "=== CONT  %s\n", t.name)
		testing.go#L1833: 			chatty:    t.chatty,
		testing.go#L1841: 	if t.chatty != nil {
		testing.go#L1842: 		t.chatty.Updatef(t.name, "=== RUN   %s\n", t.name)
		testing.go#L1865: 	if t.chatty != nil && t.chatty.json {
		testing.go#L1866: 		t.chatty.Updatef(t.parent.name, "=== NAME  %s\n", t.parent.name)
		testing.go#L2196: 	} else if t.chatty != nil {
		testing.go#L2275: 				t.chatty = newChattyPrinter(t.w)